1 // Fig. 11.7: fig11_07.cpp 2 // Cascading the overloaded << operator. 3 #include 4 5 int main() 6 { 7 cout << "47 plus 53 is " << ( 47 + 53 ) << endl; 8 9 return 0; 10 }